home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / strcmp.c < prev    next >
C/C++ Source or Header  |  1992-03-27  |  1KB  |  60 lines

  1. /* 
  2.  * strcmp.c --
  3.  *
  4.  *    Source code for the "strcmp" library routine.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strcmp.c,v 1.3 92/03/27 13:29:58 rab Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <string.h>
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * strcmp --
  26.  *
  27.  *    Compare two strings lexicographically.
  28.  *
  29.  * Results:
  30.  *    The return value is 0 if the strings are identical, 1
  31.  *    if the first string is greater than the second, and 
  32.  *    -1 if the first string is less than the second.  If one
  33.  *    string is a prefix of the other then it is considered
  34.  *    to be less (the terminating zero byte participates in the
  35.  *    comparison).
  36.  *
  37.  * Side effects:
  38.  *    None.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. int
  44. strcmp(s1, s2)
  45.     register char *s1, *s2;        /* Strings to compare. */
  46. {
  47.     int c1, c2;
  48.  
  49.     while (1) {
  50.     c1 = *s1++;
  51.     c2 = *s2++;
  52.     if (c1 != c2) {
  53.         return c1 - c2;
  54.     }
  55.     if (c1 == 0) {
  56.         return 0;
  57.     }
  58.     }
  59. }
  60.